home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / func_op.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  233 b   |  8 lines  |  [TEXT/ttxt]

  1. # Description
  2. # -----------
  3. # Simple operands and arithmetic grouping
  4.  
  5. select 1+1,1-1,1+1*2,8/5,8%5,mod(8,5),mod(8,5)|0,-(1+1)*-2;
  6. select 1 | (1+1),5 & 3,bit_count(7) ;
  7. select 1 << 32,1 << 63, 1 << 64, 4 >> 2, 4 >> 63, 1<< 63 >> 60;
  8.